home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / comm / bbs / cnet5demo.lha / cnet / ircrexx / alias.rexx < prev    next >
OS/2 REXX Batch file  |  1999-03-23  |  389b  |  13 lines

  1. /* ORC - bypass password security on /alias command          */
  2. /*  WARNING!!!  This is only a sample script to show how to bypass
  3.                 a security feature of ORC.  Not for normal use.  */
  4. options results
  5. parse arg orcport a1
  6.  
  7. if show('P', orcport) then do
  8.   address value orcport
  9.     cnetirccmd '/"*!* ALIAS password security bypassed'
  10.     cnetirccmd '/alias 'orcport' 'a1
  11. end
  12.  
  13.